home *** CD-ROM | disk | FTP | other *** search
Text File | 1990-03-16 | 697 b | 31 lines | [TEXT/GEOL] |
- Item forwarded by TIM.SWIHART to MACDOUGALD1
-
- Item forwarded by TIM.SWIHART to GARDNER.P
-
- Item 1578136 15-March-90 17:53PST
-
- From: VERITY Verity, Bob Williams,PRT
-
- To: CPLUS.DEV$ C++ Interest List--Developers
-
- Sub: C++ 1.0b1 bug? | VERITY
-
- Hi,
-
- If I'm correct in assuming that CFront is not supposed to generate code that
- the C compiler will not compile, then the following demonstrates a bug in
- CFront 1.0b1, since the illegal assignment is not caught until the C compiler
- is invoked.
-
- =============================
-
- #include <QuickDraw.h>
-
- PatPtr patp;
-
- main()
- {
- patp = &qd.gray;
- }
-
-